home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Utilities / RemoteCommand / Source / RemoteCommand.h < prev    next >
Encoding:
Text File  |  1993-06-09  |  765 b   |  32 lines

  1. // -------------------------------------------------------------------------------------
  2. // RemoteCommand
  3. // -------------------------------------------------------------------------------------
  4.  
  5. #import <appkit/Application.h>
  6.  
  7. // -------------------------------------------------------------------------------------
  8. @interface RemoteCommand : Application
  9. {
  10.  
  11.     id                    newExecWindow;
  12.     id                    newExecHost;
  13.     id                    newExecServer;
  14.     
  15.     char                *appUserName;
  16.     char                *appUserHome;
  17.     char                *appServerHost;
  18.     char                *appServerName;
  19.  
  20. }
  21.  
  22. // -------------------------------------------------------------------------------------
  23.  
  24. const char *XAppPath();
  25.  
  26. - (const char*)appUserName;
  27. - (const char*)appUserHome;
  28. - (const char*)appServerHost;
  29. - (const char*)appServerName;
  30.  
  31. @end
  32.